Seaborn
Manuela da Cruz Chadreque
11 Dezember 2020
Let's discuss some plots that allow us to visualize the distribution of a data set. These plots are:
import seaborn as sns
%matplotlib inline
import numpy as np
Seaborn comes with built-in data sets!
tips = sns.load_dataset('tips')
tips.head()
The distplot shows the distribution of a univariate set of observations.
sns.distplot(tips['total_bill'])
sns.distplot(tips['total_bill'], kde=False)
sns.distplot(tips['total_bill'], kde=False, bins=30)
jointplot() allows you to basically match up two distplots for bivariate data. With your choice of what kind parameter to compare with:
sns.jointplot(x='total_bill',y='tip',data=tips,kind='scatter' )
sns.jointplot(x='total_bill', y='tip', data=tips, kind='hex')
sns.jointplot(x='total_bill', y='tip',data=tips,kind='reg' )
pairplot will plot pairwise relationships across an entire dataframe (for the numerical columns) and supports a color hue argument (for categorical columns).
sns.pairplot(tips)
sns.pairplot(tips, hue='sex', palette='coolwarm')
rugplots are actually a very simple concept, they just draw a dash mark for every point on a univariate distribution. They are the building block of a KDE plot:
sns.rugplot(tips['total_bill'])
kdeplots are Kernel Density Estimation plots. These KDE plots replace every single observation with a Gaussian (Normal) distribution centered around that value. For example:
Now let's discuss using seaborn to plot categorical data! There are a few main plot types for this:
Let's go through examples of each!
These very similar plots allow you to get aggregate data off a categorical feature in your data. barplot is a general plot that allows you to aggregate the categorical data based off some function, by default the mean:
sns.barplot(x='sex', y='total_bill', data=tips)
sns.barplot(x='sex',y='total_bill', data=tips, estimator=np.std)
This is essentially the same as barplot except the estimator is explicitly counting the number of occurrences. Which is why we only pass the x value:
sns.countplot(x='sex', data=tips)
boxplots and violinplots are used to shown the distribution of categorical data. A box plot (or box-and-whisker plot) shows the distribution of quantitative data in a way that facilitates comparisons between variables or across levels of a categorical variable. The box shows the quartiles of the dataset while the whiskers extend to show the rest of the distribution, except for points that are determined to be “outliers” using a method that is a function of the inter-quartile range.
sns.boxplot(x='day', y='total_bill', data=tips, palette='rainbow')
# Can do entire dataframe with orient='h'
sns.boxplot(data=tips,palette='rainbow', orient='h')
sns.boxplot(x='day', y='total_bill',hue='sex', data=tips, palette='coolwarm')
A violin plot plays a similar role as a box and whisker plot. It shows the distribution of quantitative data across several levels of one (or more) categorical variables such that those distributions can be compared. Unlike a box plot, in which all of the plot components correspond to actual datapoints, the violin plot features a kernel density estimation of the underlying distribution.
sns.violinplot(x='day', y='total_bill', data=tips, palette='rainbow')
sns.violinplot(x='day', y='total_bill',hue='sex',data=tips,palette='Set1')
sns.violinplot(x='day',y='total_bill',hue='sex',data=tips,palette='Set1',split=True)
The stripplot will draw a scatterplot where one variable is categorical. A strip plot can be drawn on its own, but it is also a good complement to a box or violin plot in cases where you want to show all observations along with some representation of the underlying distribution.
The swarmplot is similar to stripplot(), but the points are adjusted (only along the categorical axis) so that they don’t overlap. This gives a better representation of the distribution of values, although it does not scale as well to large numbers of observations (both in terms of the ability to show all the points and in terms of the computation needed to arrange them).
sns.stripplot(x='day', y='total_bill', data=tips)
sns.stripplot(x='day', y='total_bill', data=tips, jitter=True)
sns.stripplot(x='day', y='total_bill', data=tips, hue='sex',jitter=True, palette='Set1')
sns.stripplot(x='day', y='total_bill', data=tips, hue='sex', jitter=True, palette='Set1', split=True)
sns.swarmplot(x='day', y='total_bill', data=tips)
sns.swarmplot(x='day', y='total_bill', data=tips, hue='sex', palette='Set1', split=True)
sns.violinplot(x='tip', y='day', data=tips, palette='rainbow')
sns.swarmplot(x="tip", y='day', data=tips, color='black',size=3)
factorplot is the most general form of a categorical plot. It can take in a kind parameter to adjust the plot type:
sns.factorplot(x='sex', y='total_bill', data=tips, kind='bar')